home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 5_programming / on / unload < prev    next >
Encoding:
Text File  |  2001-03-21  |  617 b   |  22 lines

  1. Synopsis:
  2.    on [<modes>]unload [<serial#>] [-|^]<match> { <action> }
  3.  
  4. Description:
  5.    This hook is triggered whenever the unload(5) command is issued to unload
  6.    a packaged script.
  7.  
  8. Parameters:
  9.    $0-    the parameters passed to the /package command
  10.           (NOTE that passing more than one argument to /package may cause
  11.       future incompatibilities, and should be avoided at all costs)
  12.  
  13. Examples:
  14.    To inform the user that a script is exiting:
  15.       on ^unload "superscript *" {
  16.         echo *** SuperScript exiting. To infinity, and lots farther!
  17.       }
  18.  
  19. See Also:
  20.    package(5); unload(5)
  21.  
  22.